* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Cabeçalho */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  background: #ffffff;
}

/* LOGO */
.logo img {
  height: 120px;
}

/* MENU */
nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #1f7a3f;
  font-weight: 500;
  font-size: 15px;
}

/* BOTÃO */
.btn {
  background: #0a8f3c;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.btn:hover {
  background: #087a34;
}

/* Seção Marcas */
.brands {
  margin-top: -20px;
  text-align: center;
  padding: 50px 20px;
}

.brands h2 {
  font-size: 60px; /* aumentado */
  color: #008c45;
  font-weight: bold;
}

.brands p {
  font-size: 22px;
  color: #008c45;
  margin-top: 10px;
}


/* ========================
   RODAPÉ
======================== */

footer {
  background: #63a91f;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  flex-direction: column; /* organiza em duas linhas */
  gap: 15px; /* espaço entre as linhas */
}

/* Linha de cima */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 80px;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Linha de baixo */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.creditos {
  font-size: 13px;
  margin-top: -20px;
}

.creditos a {
  color: #fff;
  text-decoration: underline;
}


/* ========================
   CARROSSEL UNIDADES
======================== */
.carousel {
  width: 100%;
  height: 250px; /* mantém sua altura */
  overflow: hidden;
  border-radius: 15px 0;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 1s ease-in-out; /* troca suave */
  will-change: transform;
}

.carousel img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  flex: 0 0 100%; /* cada imagem ocupa 100% da largura */
  display: block;
}

html {
  scroll-behavior: smooth;
}